home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / kernel / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-05  |  631 b   |  30 lines

  1. # Makefile for 680x0 Linux kernel source directory
  2. #
  3. # Copyright 1993 by Hamish Macdonald
  4. #
  5. # This file is subject to the terms and conditions of the GNU General Public
  6. # License.  See the file "README.legal" in the main directory of this archive
  7. # for more details.
  8.  
  9.  
  10. include ../MakeVars
  11.  
  12. OBJS    = sched.o fork.o panic.o printk.o vsprintf.o sys.o exit.o \
  13.       signal.o mktime.o ptrace.o itimer.o info.o ldt.o time.o
  14.  
  15. all: kernel.o
  16.  
  17. kernel.o: $(OBJS)
  18.     $(LD) -r -o kernel.o $(OBJS)
  19.     sync
  20.  
  21. dep:
  22.     $(CPP) -M $(INCFLAGS) *.c > .depend
  23.  
  24. #
  25. # include a dependency file if one exists
  26. #
  27. ifeq (.depend,$(wildcard .depend))
  28. include .depend
  29. endif
  30.